diff options
Diffstat (limited to 'app/[lng]/evcp')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/b-rfq/[id]/final/page.tsx | 52 | ||||
| -rw-r--r-- | app/[lng]/evcp/(evcp)/system/roles/page.tsx | 2 |
2 files changed, 53 insertions, 1 deletions
diff --git a/app/[lng]/evcp/(evcp)/b-rfq/[id]/final/page.tsx b/app/[lng]/evcp/(evcp)/b-rfq/[id]/final/page.tsx index e69de29b..d50ec03d 100644 --- a/app/[lng]/evcp/(evcp)/b-rfq/[id]/final/page.tsx +++ b/app/[lng]/evcp/(evcp)/b-rfq/[id]/final/page.tsx @@ -0,0 +1,52 @@ +import { Separator } from "@/components/ui/separator" +import { type SearchParams } from "@/types/table" +import { getValidFilters } from "@/lib/data-table" +import { getFinalRfqDetail } from "@/lib/b-rfq/service" +import { searchParamsFinalRfqDetailCache } from "@/lib/b-rfq/validations" +import { FinalRfqDetailTable } from "@/lib/b-rfq/final/final-rfq-detail-table" + +interface IndexPageProps { + // Next.js 13 App Router에서 기본으로 주어지는 객체들 + params: { + lng: string + id: string + } + searchParams: Promise<SearchParams> +} + +export default async function RfqPage(props: IndexPageProps) { + const resolvedParams = await props.params + const lng = resolvedParams.lng + const id = resolvedParams.id + + const idAsNumber = Number(id) + + // 2) SearchParams 파싱 (Zod) + // - "filters", "page", "perPage", "sort" 등 contact 전용 컬럼 + const searchParams = await props.searchParams + const search = searchParamsFinalRfqDetailCache.parse(searchParams) + const validFilters = getValidFilters(search.filters) + + const promises = getFinalRfqDetail({ + ...search, + filters: validFilters, + }, idAsNumber) + + // 4) 렌더링 + return ( + <div className="space-y-6"> + <div> + <h3 className="text-lg font-medium"> + Fianl RFQ List + </h3> + <p className="text-sm text-muted-foreground"> + 업체에게 최종 RFQ를 송부하는 화면입니다. + </p> + </div> + <Separator /> + <div> + <FinalRfqDetailTable promises={promises} rfqId={idAsNumber}/> + </div> + </div> + ) +}
\ No newline at end of file diff --git a/app/[lng]/evcp/(evcp)/system/roles/page.tsx b/app/[lng]/evcp/(evcp)/system/roles/page.tsx index fe074600..9f3a4dd8 100644 --- a/app/[lng]/evcp/(evcp)/system/roles/page.tsx +++ b/app/[lng]/evcp/(evcp)/system/roles/page.tsx @@ -56,7 +56,7 @@ export default async function UserTable(props: IndexPageProps) { <div> <h3 className="text-lg font-medium">Role Management</h3> <p className="text-sm text-muted-foreground"> - 역할을 생성하고 역할에 유저를 할당할 수 있는 페이지입니다. 역할에 메뉴의 접근 권한 역시 할당할 수 있습니다. + 역할을 생성하고 역할에 유저를 할당할 수 있는 페이지입니다. 역할에 메뉴의 접근 권한 역시 할당할 수 있습니다. 구매를 위해서는 정기평자 담당자, 실사 담당자가 지정되어있어야합니다. </p> </div> <Separator /> |
